home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2002 June / PC-WELT 6-2002.ISO / js / navigatesearch.js < prev    next >
Encoding:
JavaScript  |  2002-04-16  |  592 b   |  20 lines

  1. //<script language=javascript>
  2.     // +++++++++++++++++++++ 
  3.     function funcNavigate()
  4.     {
  5.         var FeV = document.objNavigation.txtSortBy[document.objNavigation.txtSortBy.selectedIndex].value;
  6.         if (FeV!='')
  7.         {
  8.             parent.pcw_content_toc.location.href="../index/"+FeV+".htm";
  9.         }
  10.     }
  11.  
  12.     // +++++++++++++++++++++ 
  13.     function startSearch()
  14.     {
  15.         document.objNavigation.txtSortBy.selectedIndex=0;
  16.         top.SetKeyword(document.objNavigation.txtSearch.value);
  17.         parent.pcw_content_toc.location.href="../index/toc_searchresults.htm";
  18.         document.objNavigation.txtSearch.select();
  19.     }
  20. //</script>